#
# Oliver Soop oliversoop@gmail.com
# 7. November  2013
#
This script is for parsing URLs from article comments. Also to map and store relations between the comments themselves and articles and comments.
This script is prescribed for a database containing the information with a set schema. (See ArticleCommentParsingScript.py for more info)
In this script there are following Python scripts files:
	configuration.py - Here the configuration of database is located.
	ArticleCommentParsingScript.py - This script coordinates the whole processing. Exact description present in the corresponding file.
	ArticleCommentURLparser.py - This script parses URLs from different texts (Facebook posts and comments). Exact description present in the corresponding file.
	MainScript.py - This script initiates the processing and here one can set the location of resulting files. More exact description present in the corresponding file.s
	URLChecker.py - This script checks if a URL is valid and if it is a short URL it will expand it. More exact description present in the corresponding file.

Necessary libraries:
	MySQL Python connector http://dev.mysql.com/downloads/connector/python/
	Python v2.7

To run the script, set the database connection info in configuration.py and output files in MainScript.py and run the MainScript.py.